home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / AmiVoGL_MDEV.lha / drivers / ibmpc / pc_getke.c < prev    next >
Text File  |  1991-07-18  |  117b  |  15 lines

  1. int
  2. pc_getkey()
  3. {
  4.     return((int)getch());
  5. }
  6.  
  7. int
  8. pc_checkkey()
  9. {
  10.     if (kbhit())
  11.         return((int)getch());
  12.  
  13.     return(0);
  14. }
  15.